home *** CD-ROM | disk | FTP | other *** search
/ Power Programmierung 2 / Power-Programmierung CD 2 (Tewi)(1994).iso / gnu / gnulib / ghostscr / gxfont1.h < prev    next >
Encoding:
C/C++ Source or Header  |  1990-12-31  |  1.4 KB  |  34 lines

  1. /* Copyright (C) 1990 Aladdin Enterprises.  All rights reserved.
  2.    Distributed by Free Software Foundation, Inc.
  3.  
  4. This file is part of Ghostscript.
  5.  
  6. Ghostscript is distributed in the hope that it will be useful, but
  7. WITHOUT ANY WARRANTY.  No author or distributor accepts responsibility
  8. to anyone for the consequences of using it or for whether it serves any
  9. particular purpose or works at all, unless he says so in writing.  Refer
  10. to the Ghostscript General Public License for full details.
  11.  
  12. Everyone is granted permission to copy, modify and redistribute
  13. Ghostscript, but only under the conditions described in the Ghostscript
  14. General Public License.  A copy of this license is supposed to have been
  15. given to you along with Ghostscript so you can know your rights and
  16. responsibilities.  It should be in a file named COPYING.  Among other
  17. things, the copyright notice and this notice must be preserved on all
  18. copies.  */
  19.  
  20. /* gxfont1.h */
  21. /* Type 1 font information for GhostScript library. */
  22.  
  23. /* This is (part of) the client_data for a gs_font. */
  24. /* Eventually there may be many other entries here, */
  25. /* per the Adobe Black Book. */
  26. typedef struct gs_type1_data_s gs_type1_data;
  27. struct gs_type1_data_s {
  28.     int (*subr_proc)(P3(gs_type1_data *pdata,
  29.                 int index, byte **pcharstring));
  30.     int (*pop_proc)(P2(gs_type1_data *, fixed *));
  31.     char *proc_data;        /* data for subr_proc */
  32.     int lenIV;            /* # of leading garbage bytes */
  33. };
  34.